layout.tsx 447 B

123456789101112131415
  1. export const metadata = {
  2. title: 'Documentation',
  3. template: '%s - Documentation',
  4. description: 'Get started with Tabler, the one of world’s most popular framework for building responsive, mobile-first dashboards.',
  5. };
  6. export default function DocsLayout({ children /*, meta = {}, pageProps*/ }) {
  7. return (
  8. <div className="border-bottom border-top">
  9. <div className="container">
  10. {children}
  11. </div>
  12. </div>
  13. );
  14. }